Welcome![Sign In][Sign Up]
Location:
Search - LINUX AT91RM9200

Search list

[Linux-Unixat91rm9200_fiq_linux_driver

Description: linux内核不提供fiq的驱动的,这里是一个at91rm9200-fiq的驱动的示例-Fiq linux kernel does not provide the driver and here is a driver at91rm9200-fiq example
Platform: | Size: 9216 | Author: 张锋 | Hits:

[ARM-PowerPC-ColdFire-MIPSat91rm9200dk

Description: 实现了跳过at91rm9200dk的loader直接使用uboot来引导我们的linux系统。-Skip at91rm9200dk realize the direct use of the loader to guide uboot our linux systems.
Platform: | Size: 7168 | Author: foxzenith | Hits:

[Embeded Linux2.6.25-at91.patch

Description: at91rm9200 LINUX 2.6.25最新内核补丁,谢谢大家-The latest at91rm9200 LINUX 2.6.25 kernel patches, I would like to thank everyone
Platform: | Size: 132096 | Author: 张小亮 | Hits:

[Embeded LinuxDS1820

Description: 基于linux2.4内核下,外接于AT91RM9200处理器IO上的DS18B20驱动及测试程序。硬件平台为:中嵌科技的CE9200-1开发板-Based on linux2.4 core, the external IO in the AT91RM9200 processor
Platform: | Size: 6144 | Author: 王亮 | Hits:

[Embeded Linuxspi_main

Description: 基于at91rm9200的SPI例程,在linux下的编程-AT91RM9200 based on the SPI routines in programming under linux
Platform: | Size: 3072 | Author: 张艳龙 | Hits:

[Embeded Linuxled-applications-driven

Description: 基于AT91RM9200的led驱动及应用程序-Led based on the AT91RM9200 and applications-driven
Platform: | Size: 2048 | Author: 行路人 | Hits:

[Linux-Unixserial0

Description: at91rm9200的serial driver bug解除,原来驱动会丢包,直接覆盖同名文件-at91rm9200 serial driver after debug
Platform: | Size: 84992 | Author: 张德强 | Hits:

[DocumentsLinux

Description: 介绍了基于AT91RM9200系统硬件结构和Linux内核结构,然后分析了如何将Linux移植到目标 板上的方法与步骤,最后建立了根文件系统。通过串口、网口或者JTAG口烧至目标板,该系统成本低、工作 稳定、通用性强,可用在多种工业场合。 -Introduced based on the AT91RM9200 system hardware structure and the structure of Linux kernel, and then an analysis of how to migrate to Linux on the board of the target measures and steps, and finally the establishment of the root file system. Through the serial port, network port or JTAG target board I very badly burned, the system has low cost, stable, unified work that can be used in a variety of industry forums.
Platform: | Size: 301056 | Author: hyy | Hits:

[Embeded LinuxMMC-sd

Description: at91rm9200在ADS下读写sd卡源码-at91rm9200 in the ADS under the sd card read and write source code
Platform: | Size: 335872 | Author: 张横 | Hits:

[Linux-Unixlcm2401281

Description: 吐血开放LCM240128l 针对atmel at91rm9200 嵌入式linux下的驱动,希望对调试液晶屏朋友有帮助.-Hematemesis open LCM240128l for atmel at91rm9200 under embedded linux driver, want to help a friend who is debuging LCD screen.
Platform: | Size: 6144 | Author: fenghui | Hits:

[Linux-Unixioread-www.tar

Description: Reading and writting GPIO under linux running on AT91RM9200 (by Lucjan Bryndza)
Platform: | Size: 22528 | Author: paolo | Hits:

[Embeded-SCM DevelopATMELAT91RM9200loaderboot

Description: Atmel AT91RM9200 的load.bin和boot.bin的官方源代码,在我的YL9200开发板上确认能用-Atmel AT91RM9200' s load.bin and boot.bin official source code, in my YL9200 development board can be used to confirm. . .
Platform: | Size: 227328 | Author: 周琪 | Hits:

[Linux-UnixAT91RM9200inLinux

Description: at91rm9200 linux内核移植全过程,内容很详细,欢迎下载-at91rm9200 linux kernel porting the entire process, the content is very detailed, are welcome to download
Platform: | Size: 17408 | Author: 谈某 | Hits:

[VxWorksvxworks

Description: BSP是板级支持包,是介于主板硬件和操作系统之间的一层,应该说是属于操作系统的一部分,主要目的是为了支持操作系统,使之能够更好的运行于硬件主板。BSP是相对于操作系统而言的,不同的操作系统对应于不同定义形式的BSP,例如 VxWorks的BSP和Linux的BSP相对于某一CPU来说尽管实现的功能一样,可是写法和接口定义是完全不同的,所以写BSP一定要按照该系统 BSP的定义形式来写(BSP的编程过程大多数是在某一个成型的BSP模板上进行修改)。这样才能与上层OS保持正确的接口,良好的支持上层OS。 例如: 在VxWorks中的网卡驱动,首先在config.h中包含该网卡,然后将网卡含网卡的信息的参数放入数组 END_TBL_ENTRY endDevTbl [] 中,系统通过函数muxDevLoad( )调用这个数组来安装网卡驱动。 而在Linux中的网卡驱动,是在space.c中声明该网络设备,再把网卡驱动的一些函数加到dev结构中,由函数ether_setup()来完成网卡驱动的安装。-BSP是板级支持包,是介于主板硬件和操作系统之间的一层,应该说是属于操作系统的一部分,主要目的是为了支持操作系统,使之能够更好的运行于硬件主板。BSP是相对于操作系统而言的,不同的操作系统对应于不同定义形式的BSP,例如 VxWorks的BSP和Linux的BSP相对于某一CPU来说尽管实现的功能一样,可是写法和接口定义是完全不同的,所以写BSP一定要按照该系统 BSP的定义形式来写(BSP的编程过程大多数是在某一个成型的BSP模板上进行修改)。这样才能与上层OS保持正确的接口,良好的支持上层OS。 例如: 在VxWorks中的网卡驱动,首先在config.h中包含该网卡,然后将网卡含网卡的信息的参数放入数组 END_TBL_ENTRY endDevTbl [] 中,系统通过函数muxDevLoad( )调用这个数组来安装网卡驱动。 而在Linux中的网卡驱动,是在space.c中声明该网络设备,再把网卡驱动的一些函数加到dev结构中,由函数ether_setup()来完成网卡驱动的安装。
Platform: | Size: 5666816 | Author: 汤伟 | Hits:

[Technology ManagementLinux-on-ARM

Description: ARM挂上Linux系统的教学,有AT91RM9200/S3C2410/OMAP 1510.1610/iMX21介绍以及系统如何编成教学-ARM hang up the teaching of the Linux system, AT91RM9200/S3C2410/OMAP 1510.1610/iMX21 introduced and how the system compiled teaching.
Platform: | Size: 6966272 | Author: Joseph Yang | Hits:

[Linux-Unixrtc-at91rm9200

Description: Real Time Clock interface for Linux on Atmel AT91RM92-Real Time Clock interface for Linux on Atmel AT91RM9200
Platform: | Size: 3072 | Author: kangmonguiu | Hits:

[Linux driverLinux

Description: 搞项目时,做系统移植的心得体会,笔记,芯片是at91rm92-Engage in a project to do system migration experiences, notes, chip at91rm9200
Platform: | Size: 1913856 | Author: ph | Hits:

[Linux-Unixrtc-at91rm9200

Description: Real Time Clock interface for Linux on Atmel AT91RM9200.
Platform: | Size: 5120 | Author: puntuwe | Hits:

[Linux-Unixat91rm9200

Description: The peripheral clocks for Linux v2.13.6.
Platform: | Size: 3072 | Author: mivitu | Hits:

[GDI-Bitmapat91rm9200

Description: The peripheral clocks for Linux v2.13.6.
Platform: | Size: 3072 | Author: strjkhtdsse | Hits:
« 1 2 3 4 56 7 8 »

CodeBus www.codebus.net